from __future__ import print_function
from keras.models import Sequential, Model
from keras.layers.embeddings import Embedding
from keras.layers import Input, Activation, Dense, Permute, Dropout, add, dot,merge, concatenate
from keras.layers import LSTM
from keras.utils.data_utils import get_file
from keras.preprocessing.sequence import pad_sequences
from functools import reduce
import tarfile
import numpy as np
import re
def tokenize(sent):
# splitting the sentences based on spaces and tokenizing them
return [x.strip() for x in re.split('(\W+)?', sent) if x.strip()]
def parse_stories(lines, only_supporting=False):
# Trying to retrive the questions and
# ansers to the particular questions
data = []
story = []
for line in lines:
line = line.decode('utf-8').strip()
nid, line = line.split(' ', 1)
nid = int(nid)
if nid == 1:
story = []
if '\t' in line:
q, a, supporting = line.split('\t')
q = tokenize(q)
substory = None
if only_supporting:
# Only select the related substory
supporting = map(int, supporting.split())
substory = [story[i - 1] for i in supporting]
else:
# Provide all the substories
substory = [x for x in story if x]
data.append((substory, q, a))
story.append('')
else:
sent = tokenize(line)
story.append(sent)
return data
def get_stories(f, only_supporting=False, max_length=None):
# Discaring the stories longer than the max length defined
# and converting the lines in to a single story corresponding
# to the questions
data = parse_stories(f.readlines(), only_supporting=only_supporting)
flatten = lambda data: reduce(lambda x, y: x + y, data)
data = [(flatten(story), q, answer) for story, q, answer in data if not max_length or len(flatten(story)) < max_length]
return data
def vectorize_stories(data, word_idx, story_maxlen, query_maxlen):
# Mapping the length of stories against story with maximum
# length and doing necessary padding
X = []
Xq = []
Y = []
for story, query, answer in data:
x=[word_idx[w] for w in story]
xq=[word_idx[w] for w in query]
y=np.zeros(len(word_idx) + 1)
y[word_idx[answer]]=1
X.append(x)
Xq.append(xq)
Y.append(y)
return (pad_sequences(X, maxlen=story_maxlen),
pad_sequences(Xq, maxlen=query_maxlen),
np.array(Y))
''' Accessing the particula modules of the
Babi dataset saperated by the modules
'''
try:
path = get_file('babi-tasks-v1-2.tar.gz', origin='https://s3.amazonaws.com/text-datasets/babi_tasks_1-20_v1-2.tar.gz')
except:
print('Error downloading dataset, please download it manually:\n'
'$ wget http://www.thespermwhale.com/jaseweston/babi/tasks_1-20_v1-2.tar.gz\n'
'$ mv tasks_1-20_v1-2.tar.gz ~/.keras/datasets/babi-tasks-v1-2.tar.gz')
raise
tar = tarfile.open(path)
challenges = {'qa11_basic-coreference': 'tasks_1-20_v1-2/en-10k/qa11_basic-coreference_{}.txt'}
challenge_type = 'qa11_basic-coreference'
challenge = challenges[challenge_type]
print('Extracting stories for the challenge:', challenge_type)
train_stories = get_stories(tar.extractfile(challenge.format('train')))
test_stories = get_stories(tar.extractfile(challenge.format('test')))
Extracting stories for the challenge: qa11_basic-coreference
/usr/lib/python3.5/re.py:203: FutureWarning: split() requires a non-empty pattern match. return _compile(pattern, flags).split(string, maxsplit)
print(train_stories)
[(['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden')]
print(test_stories)
[(['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Mary', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Mary', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Daniel', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Daniel', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Daniel', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'Daniel', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'John', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'Mary', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'Sandra', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'John', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Sandra', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'Mary', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'Daniel', '?'], 'garden')]
vocab = set()
for story, q, answer in train_stories + test_stories:
print(story)
vocab |= set(story + q + [answer])
vocab = sorted(vocab)
# Reserve 0 for masking via pad_sequences
vocab_size = len(vocab) + 1
story_maxlen = max(map(len, (x for x, _, _ in train_stories + test_stories)))
query_maxlen = max(map(len, (x for _, x, _ in train_stories + test_stories)))
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Then', 'she', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Then', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'he', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Then', 'he', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Then', 'he', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Then', 'he', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'he', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Then', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'After', 'that', 'he', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Then', 'she', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Following', 'that', 'he', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Then', 'she', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Then', 'he', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Then', 'he', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Then', 'she', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Afterwards', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'After', 'that', 'he', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'After', 'that', 'she', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Following', 'that', 'she', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Then', 'she', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Following', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'she', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Following', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Then', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.']
with open('story_maxlen_basic-coreference.txt','w') as file:
file.write(str(story_maxlen))
file.write('\n')
file.close()
with open('query_maxlen_basic-coreference.txt','w') as file:
file.write(str(query_maxlen))
file.write('\n')
file.close()
''' Knowing some facts and stats about the
module of dataset we are using
'''
print('-')
print('Vocab size:', vocab_size, 'unique words')
print('Story max length:', story_maxlen, 'words')
print('Query max length:', query_maxlen, 'words')
print('Number of training stories:', len(train_stories))
print('Number of test stories:', len(test_stories))
print('-')
print('Here\'s what a "story" tuple looks like (input, query, answer):')
print(train_stories[0])
print('-')
print('Vectorizing the word sequences...')
word_idx = dict((c, i + 1) for i, c in enumerate(vocab))
idx_word = dict((i+1, c) for i,c in enumerate(vocab))
inputs_train, queries_train, answers_train = vectorize_stories(train_stories,
word_idx,
story_maxlen,
query_maxlen)
inputs_test, queries_test, answers_test = vectorize_stories(test_stories,
word_idx,
story_maxlen,
query_maxlen)
- Vocab size: 29 unique words Story max length: 76 words Query max length: 4 words Number of training stories: 10000 Number of test stories: 1000 - Here's what a "story" tuple looks like (input, query, answer): (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'Mary', '?'], 'bedroom') - Vectorizing the word sequences...
with open('word_idx_basic-coreference.txt','w') as file:
file.write(str(word_idx))
file.close()
with open('idx_word_basic-coreference.txt','w') as file:
file.write(str(idx_word))
file.close()
print(word_idx)
{'After': 3, 'bedroom': 14, 'back': 12, 'the': 25, 'Sandra': 9, 'John': 7, 'hallway': 16, 'Following': 6, 'Afterwards': 4, 'to': 26, 'Daniel': 5, 'Then': 10, 'he': 17, 'is': 18, 'bathroom': 13, 'travelled': 27, 'she': 23, 'office': 22, '.': 1, 'garden': 15, 'Where': 11, 'went': 28, 'that': 24, 'kitchen': 20, 'moved': 21, 'journeyed': 19, '?': 2, 'Mary': 8}
print(idx_word)
{1: '.', 2: '?', 3: 'After', 4: 'Afterwards', 5: 'Daniel', 6: 'Following', 7: 'John', 8: 'Mary', 9: 'Sandra', 10: 'Then', 11: 'Where', 12: 'back', 13: 'bathroom', 14: 'bedroom', 15: 'garden', 16: 'hallway', 17: 'he', 18: 'is', 19: 'journeyed', 20: 'kitchen', 21: 'moved', 22: 'office', 23: 'she', 24: 'that', 25: 'the', 26: 'to', 27: 'travelled', 28: 'went'}
print('-')
print('inputs: integer tensor of shape (samples, max_length)')
print('inputs_train shape:', inputs_train.shape)
print('inputs_test shape:', inputs_test.shape)
print('-')
print('queries: integer tensor of shape (samples, max_length)')
print('queries_train shape:', queries_train.shape)
print('queries_test shape:', queries_test.shape)
print('-')
print('answers: binary (1 or 0) tensor of shape (samples, vocab_size)')
print('answers_train shape:', answers_train.shape)
print('answers_test shape:', answers_test.shape)
print('-')
print('Compiling...')
- inputs: integer tensor of shape (samples, max_length) inputs_train shape: (10000, 76) inputs_test shape: (1000, 76) - queries: integer tensor of shape (samples, max_length) queries_train shape: (10000, 4) queries_test shape: (1000, 4) - answers: binary (1 or 0) tensor of shape (samples, vocab_size) answers_train shape: (10000, 29) answers_test shape: (1000, 29) - Compiling...
train_epochs = 120
batch_size = 32
lstm_size = 64
# initiating
input_sequence = Input((story_maxlen,))
question = Input((query_maxlen,))
print('Input sequence:', input_sequence)
print('Question:', question)
# defining the encoder for the input and embedding the vocab
input_encoder_m = Sequential()
input_encoder_m.add(Embedding(input_dim=vocab_size,
output_dim=64))
input_encoder_m.add(Dropout(0.3))
# mapping the dimensions according to the maximum length on input
input_encoder_c = Sequential()
input_encoder_c.add(Embedding(input_dim=vocab_size,
output_dim=query_maxlen))
input_encoder_c.add(Dropout(0.3))
# vectorizing the questions
question_encoder = Sequential()
question_encoder.add(Embedding(input_dim=vocab_size,
output_dim=64,
input_length=query_maxlen))
question_encoder.add(Dropout(0.3))
# conctinating input stories and questions
input_encoded_m = input_encoder_m(input_sequence)
print('Input encoded m', input_encoded_m)
input_encoded_c = input_encoder_c(input_sequence)
print('Input encoded c', input_encoded_c)
question_encoded = question_encoder(question)
print('Question encoded', question_encoded)
# cross refrencing the questions against the stories
match = merge([input_encoded_m, question_encoded], mode='dot', dot_axes=(2, 2))
print(match.shape)
match = Activation('softmax')(match)
print('Match shape', match)
response = merge([match, input_encoded_c], mode='sum')
response = Permute((2, 1))(response)
print('Response shape', response)
# mapping answers against the vector of question and stories
answer = merge([response, question_encoded], mode='concat')
print('Answer shape', answer)
answer = LSTM(64)(answer)
answer = Dropout(0.3)(answer)
answer = Dense(vocab_size)(answer)
# popping out prob. of answers
answer = Activation('softmax')(answer)
Input sequence: Tensor("input_9:0", shape=(?, 76), dtype=float32)
Question: Tensor("input_10:0", shape=(?, 4), dtype=float32)
Input encoded m Tensor("sequential_25/dropout_17/cond/Merge:0", shape=(?, 76, 64), dtype=float32)
Input encoded c Tensor("sequential_26/dropout_18/cond/Merge:0", shape=(?, 76, 4), dtype=float32)
Question encoded Tensor("sequential_27/dropout_19/cond/Merge:0", shape=(?, 4, 64), dtype=float32)
(?, 76, 4)
Match shape Tensor("activation_9/truediv:0", shape=(?, 76, 4), dtype=float32)
Response shape Tensor("permute_5/transpose:0", shape=(?, 4, 76), dtype=float32)
Answer shape Tensor("merge_15/concat:0", shape=(?, 4, 140), dtype=float32)
/usr/local/lib/python3.5/dist-packages/ipykernel_launcher.py:38: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc. /home/ubuntu/src/keras/keras/legacy/layers.py:464: UserWarning: The `Merge` layer is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc. name=name) /usr/local/lib/python3.5/dist-packages/ipykernel_launcher.py:43: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc. /usr/local/lib/python3.5/dist-packages/ipykernel_launcher.py:48: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
model = Model([input_sequence, question], answer)
model.compile(optimizer='rmsprop', loss='categorical_crossentropy',
metrics=['accuracy'])
model.fit([inputs_train, queries_train], answers_train, batch_size, train_epochs,
validation_data=([inputs_test, queries_test], answers_test))
Train on 10000 samples, validate on 1000 samples Epoch 1/120 10000/10000 [==============================] - 5s 470us/step - loss: 1.8832 - acc: 0.1861 - val_loss: 1.6928 - val_acc: 0.3410 Epoch 2/120 10000/10000 [==============================] - 4s 378us/step - loss: 1.4709 - acc: 0.4523 - val_loss: 1.1063 - val_acc: 0.7050 Epoch 3/120 10000/10000 [==============================] - 4s 379us/step - loss: 1.2191 - acc: 0.5927 - val_loss: 0.9681 - val_acc: 0.6740 Epoch 4/120 10000/10000 [==============================] - 4s 379us/step - loss: 1.1277 - acc: 0.6349 - val_loss: 0.8627 - val_acc: 0.7350 Epoch 5/120 10000/10000 [==============================] - 4s 380us/step - loss: 1.0168 - acc: 0.6558 - val_loss: 0.8625 - val_acc: 0.7120 Epoch 6/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.9506 - acc: 0.6648 - val_loss: 0.7380 - val_acc: 0.7330 Epoch 7/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.9040 - acc: 0.6732 - val_loss: 0.7050 - val_acc: 0.7460 Epoch 8/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.8656 - acc: 0.6759 - val_loss: 0.6726 - val_acc: 0.7480 Epoch 9/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.8302 - acc: 0.6839 - val_loss: 0.6592 - val_acc: 0.7370 Epoch 10/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.8032 - acc: 0.6834 - val_loss: 0.6460 - val_acc: 0.7450 Epoch 11/120 10000/10000 [==============================] - 4s 381us/step - loss: 0.7778 - acc: 0.6840 - val_loss: 0.6315 - val_acc: 0.7470 Epoch 12/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.7591 - acc: 0.6858 - val_loss: 0.6308 - val_acc: 0.7540 Epoch 13/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.7411 - acc: 0.6887 - val_loss: 0.6293 - val_acc: 0.7340 Epoch 14/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.7303 - acc: 0.6881 - val_loss: 0.6404 - val_acc: 0.7150 Epoch 15/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.7120 - acc: 0.6917 - val_loss: 0.6157 - val_acc: 0.7400 Epoch 16/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.6981 - acc: 0.6990 - val_loss: 0.6212 - val_acc: 0.7540 Epoch 17/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.7007 - acc: 0.6935 - val_loss: 0.6147 - val_acc: 0.7120 Epoch 18/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.6855 - acc: 0.7003 - val_loss: 0.6226 - val_acc: 0.7330 Epoch 19/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.6793 - acc: 0.6988 - val_loss: 0.6074 - val_acc: 0.7380 Epoch 20/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.6722 - acc: 0.7060 - val_loss: 0.6094 - val_acc: 0.7340 Epoch 21/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.6722 - acc: 0.7012 - val_loss: 0.6265 - val_acc: 0.7030 Epoch 22/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.6587 - acc: 0.7059 - val_loss: 0.6066 - val_acc: 0.7260 Epoch 23/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.6578 - acc: 0.7044 - val_loss: 0.6052 - val_acc: 0.7570 Epoch 24/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.6476 - acc: 0.7082 - val_loss: 0.6018 - val_acc: 0.7330 Epoch 25/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.6483 - acc: 0.7136 - val_loss: 0.6079 - val_acc: 0.7400 Epoch 26/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.6384 - acc: 0.7142 - val_loss: 0.6132 - val_acc: 0.7120 Epoch 27/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.6236 - acc: 0.7217 - val_loss: 0.5924 - val_acc: 0.7620 Epoch 28/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.5999 - acc: 0.7464 - val_loss: 0.5665 - val_acc: 0.7780 Epoch 29/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.5760 - acc: 0.7578 - val_loss: 0.5400 - val_acc: 0.8010 Epoch 30/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.5479 - acc: 0.7795 - val_loss: 0.4892 - val_acc: 0.8270 Epoch 31/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.5238 - acc: 0.8006 - val_loss: 0.4625 - val_acc: 0.8490 Epoch 32/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.4821 - acc: 0.8227 - val_loss: 0.4361 - val_acc: 0.8620 Epoch 33/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.4627 - acc: 0.8315 - val_loss: 0.4414 - val_acc: 0.8720 Epoch 34/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.4484 - acc: 0.8421 - val_loss: 0.3989 - val_acc: 0.8840 Epoch 35/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.4296 - acc: 0.8487 - val_loss: 0.3983 - val_acc: 0.8840 Epoch 36/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.4115 - acc: 0.8558 - val_loss: 0.3948 - val_acc: 0.8810 Epoch 37/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.3877 - acc: 0.8635 - val_loss: 0.3692 - val_acc: 0.8900 Epoch 38/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.3765 - acc: 0.8697 - val_loss: 0.3485 - val_acc: 0.8960 Epoch 39/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.3419 - acc: 0.8780 - val_loss: 0.3307 - val_acc: 0.8990 Epoch 40/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.3146 - acc: 0.8920 - val_loss: 0.3053 - val_acc: 0.9110 Epoch 41/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.2609 - acc: 0.9142 - val_loss: 0.2550 - val_acc: 0.9300 Epoch 42/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.2290 - acc: 0.9237 - val_loss: 0.2209 - val_acc: 0.9370 Epoch 43/120 10000/10000 [==============================] - 4s 390us/step - loss: 0.1898 - acc: 0.9392 - val_loss: 0.2053 - val_acc: 0.9460 Epoch 44/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.1802 - acc: 0.9416 - val_loss: 0.2200 - val_acc: 0.9340 Epoch 45/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.1575 - acc: 0.9493 - val_loss: 0.1788 - val_acc: 0.9470 Epoch 46/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.1488 - acc: 0.9469 - val_loss: 0.1879 - val_acc: 0.9470 Epoch 47/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.1381 - acc: 0.9514 - val_loss: 0.1646 - val_acc: 0.9480 Epoch 48/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.1240 - acc: 0.9548 - val_loss: 0.1840 - val_acc: 0.9450 Epoch 49/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.1174 - acc: 0.9591 - val_loss: 0.1491 - val_acc: 0.9530 Epoch 50/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.1072 - acc: 0.9641 - val_loss: 0.1709 - val_acc: 0.9500 Epoch 51/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.1080 - acc: 0.9620 - val_loss: 0.1507 - val_acc: 0.9510 Epoch 52/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0920 - acc: 0.9672 - val_loss: 0.1652 - val_acc: 0.9480 Epoch 53/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0993 - acc: 0.9660 - val_loss: 0.1449 - val_acc: 0.9640 Epoch 54/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0832 - acc: 0.9709 - val_loss: 0.1395 - val_acc: 0.9560 Epoch 55/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0753 - acc: 0.9758 - val_loss: 0.1391 - val_acc: 0.9620 Epoch 56/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0699 - acc: 0.9764 - val_loss: 0.1240 - val_acc: 0.9660 Epoch 57/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0714 - acc: 0.9766 - val_loss: 0.1386 - val_acc: 0.9610 Epoch 58/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0589 - acc: 0.9797 - val_loss: 0.1259 - val_acc: 0.9620 Epoch 59/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0591 - acc: 0.9793 - val_loss: 0.1180 - val_acc: 0.9710 Epoch 60/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0574 - acc: 0.9801 - val_loss: 0.1162 - val_acc: 0.9710 Epoch 61/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0499 - acc: 0.9835 - val_loss: 0.1295 - val_acc: 0.9680 Epoch 62/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0448 - acc: 0.9862 - val_loss: 0.1363 - val_acc: 0.9630 Epoch 63/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0423 - acc: 0.9863 - val_loss: 0.1142 - val_acc: 0.9710 Epoch 64/120 10000/10000 [==============================] - 4s 381us/step - loss: 0.0399 - acc: 0.9873 - val_loss: 0.1100 - val_acc: 0.9710 Epoch 65/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0393 - acc: 0.9868 - val_loss: 0.1235 - val_acc: 0.9630 Epoch 66/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0386 - acc: 0.9864 - val_loss: 0.0854 - val_acc: 0.9770 Epoch 67/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0312 - acc: 0.9895 - val_loss: 0.0947 - val_acc: 0.9750 Epoch 68/120 10000/10000 [==============================] - 4s 381us/step - loss: 0.0351 - acc: 0.9888 - val_loss: 0.0903 - val_acc: 0.9800 Epoch 69/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0317 - acc: 0.9895 - val_loss: 0.0930 - val_acc: 0.9760 Epoch 70/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0253 - acc: 0.9922 - val_loss: 0.1225 - val_acc: 0.9750 Epoch 71/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0278 - acc: 0.9905 - val_loss: 0.0881 - val_acc: 0.9790 Epoch 72/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0294 - acc: 0.9903 - val_loss: 0.0993 - val_acc: 0.9820 Epoch 73/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0213 - acc: 0.9934 - val_loss: 0.1036 - val_acc: 0.9800 Epoch 74/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0239 - acc: 0.9926 - val_loss: 0.1184 - val_acc: 0.9750 Epoch 75/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0246 - acc: 0.9919 - val_loss: 0.1030 - val_acc: 0.9800 Epoch 76/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0242 - acc: 0.9925 - val_loss: 0.0944 - val_acc: 0.9790 Epoch 77/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0239 - acc: 0.9929 - val_loss: 0.0946 - val_acc: 0.9810 Epoch 78/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0201 - acc: 0.9942 - val_loss: 0.0820 - val_acc: 0.9860 Epoch 79/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0200 - acc: 0.9936 - val_loss: 0.0897 - val_acc: 0.9810 Epoch 80/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0201 - acc: 0.9931 - val_loss: 0.1053 - val_acc: 0.9780 Epoch 81/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0176 - acc: 0.9946 - val_loss: 0.1101 - val_acc: 0.9760 Epoch 82/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0180 - acc: 0.9941 - val_loss: 0.1010 - val_acc: 0.9770 Epoch 83/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0178 - acc: 0.9942 - val_loss: 0.0904 - val_acc: 0.9840 Epoch 84/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0179 - acc: 0.9945 - val_loss: 0.0828 - val_acc: 0.9830 Epoch 85/120 10000/10000 [==============================] - 4s 389us/step - loss: 0.0133 - acc: 0.9963 - val_loss: 0.0997 - val_acc: 0.9780 Epoch 86/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0170 - acc: 0.9950 - val_loss: 0.1030 - val_acc: 0.9810 Epoch 87/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0153 - acc: 0.9958 - val_loss: 0.0903 - val_acc: 0.9840 Epoch 88/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0120 - acc: 0.9968 - val_loss: 0.1087 - val_acc: 0.9740 Epoch 89/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0147 - acc: 0.9952 - val_loss: 0.1054 - val_acc: 0.9820 Epoch 90/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0133 - acc: 0.9960 - val_loss: 0.0959 - val_acc: 0.9800 Epoch 91/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0188 - acc: 0.9945 - val_loss: 0.1011 - val_acc: 0.9780 Epoch 92/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0112 - acc: 0.9963 - val_loss: 0.1042 - val_acc: 0.9770 Epoch 93/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0154 - acc: 0.9947 - val_loss: 0.0971 - val_acc: 0.9790 Epoch 94/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0163 - acc: 0.9956 - val_loss: 0.0904 - val_acc: 0.9820 Epoch 95/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0130 - acc: 0.9959 - val_loss: 0.0980 - val_acc: 0.9850 Epoch 96/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0118 - acc: 0.9969 - val_loss: 0.0828 - val_acc: 0.9820 Epoch 97/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0128 - acc: 0.9962 - val_loss: 0.1018 - val_acc: 0.9820 Epoch 98/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0112 - acc: 0.9964 - val_loss: 0.0948 - val_acc: 0.9820 Epoch 99/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0117 - acc: 0.9964 - val_loss: 0.0977 - val_acc: 0.9820 Epoch 100/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0099 - acc: 0.9972 - val_loss: 0.0872 - val_acc: 0.9840 Epoch 101/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0116 - acc: 0.9967 - val_loss: 0.0900 - val_acc: 0.9800 Epoch 102/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0122 - acc: 0.9969 - val_loss: 0.0879 - val_acc: 0.9850 Epoch 103/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0099 - acc: 0.9970 - val_loss: 0.0929 - val_acc: 0.9840 Epoch 104/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0118 - acc: 0.9965 - val_loss: 0.0803 - val_acc: 0.9810 Epoch 105/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0100 - acc: 0.9970 - val_loss: 0.0867 - val_acc: 0.9830 Epoch 106/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0106 - acc: 0.9963 - val_loss: 0.1029 - val_acc: 0.9840 Epoch 107/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0103 - acc: 0.9973 - val_loss: 0.0910 - val_acc: 0.9860 Epoch 108/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0095 - acc: 0.9980 - val_loss: 0.0737 - val_acc: 0.9900 Epoch 109/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0124 - acc: 0.9967 - val_loss: 0.0824 - val_acc: 0.9870 Epoch 110/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0091 - acc: 0.9972 - val_loss: 0.0933 - val_acc: 0.9840 Epoch 111/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0077 - acc: 0.9981 - val_loss: 0.1051 - val_acc: 0.9830 Epoch 112/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0067 - acc: 0.9978 - val_loss: 0.1025 - val_acc: 0.9840 Epoch 113/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0086 - acc: 0.9981 - val_loss: 0.1220 - val_acc: 0.9820 Epoch 114/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0091 - acc: 0.9973 - val_loss: 0.1079 - val_acc: 0.9840 Epoch 115/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0070 - acc: 0.9977 - val_loss: 0.1022 - val_acc: 0.9800 Epoch 116/120 10000/10000 [==============================] - 4s 379us/step - loss: 0.0071 - acc: 0.9984 - val_loss: 0.1127 - val_acc: 0.9830 Epoch 117/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0085 - acc: 0.9976 - val_loss: 0.1085 - val_acc: 0.9830 Epoch 118/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0109 - acc: 0.9975 - val_loss: 0.0969 - val_acc: 0.9850 Epoch 119/120 10000/10000 [==============================] - 4s 380us/step - loss: 0.0122 - acc: 0.9965 - val_loss: 0.1122 - val_acc: 0.9840 Epoch 120/120 10000/10000 [==============================] - 4s 381us/step - loss: 0.0120 - acc: 0.9972 - val_loss: 0.0934 - val_acc: 0.9850
<keras.callbacks.History at 0x7fee39e5af60>
''' Getting the feel for the test dataset
and how it is devided.
'''
' Getting the feel for the test dataset\nand how it is devided.\n'
for i in range(0,10):
current_inp = test_stories[i]
current_story, current_query, current_answer = vectorize_stories([current_inp], word_idx, story_maxlen, query_maxlen)
current_prediction = model.predict([current_story, current_query])
current_prediction = idx_word[np.argmax(current_prediction)]
print(' '.join(current_inp[0]), ' '.join(current_inp[1]), '| Prediction:', current_prediction, '| Ground Truth:', current_inp[2])
print("-----------------------------------------------------------------------------------------")
John journeyed to the hallway . After that he journeyed to the garden . Where is John ? | Prediction: garden | Ground Truth: garden ----------------------------------------------------------------------------------------- John journeyed to the hallway . After that he journeyed to the garden . John moved to the office . Following that he went to the hallway . Where is John ? | Prediction: hallway | Ground Truth: hallway ----------------------------------------------------------------------------------------- John journeyed to the hallway . After that he journeyed to the garden . John moved to the office . Following that he went to the hallway . Sandra travelled to the bedroom . Then she moved to the hallway . Where is Sandra ? | Prediction: hallway | Ground Truth: hallway ----------------------------------------------------------------------------------------- John journeyed to the hallway . After that he journeyed to the garden . John moved to the office . Following that he went to the hallway . Sandra travelled to the bedroom . Then she moved to the hallway . Mary travelled to the hallway . Afterwards she went to the bathroom . Where is Sandra ? | Prediction: hallway | Ground Truth: hallway ----------------------------------------------------------------------------------------- John journeyed to the hallway . After that he journeyed to the garden . John moved to the office . Following that he went to the hallway . Sandra travelled to the bedroom . Then she moved to the hallway . Mary travelled to the hallway . Afterwards she went to the bathroom . John went back to the office . After that he moved to the bathroom . Where is Mary ? | Prediction: bathroom | Ground Truth: bathroom ----------------------------------------------------------------------------------------- Daniel travelled to the office . After that he went back to the kitchen . Where is Daniel ? | Prediction: kitchen | Ground Truth: kitchen ----------------------------------------------------------------------------------------- Daniel travelled to the office . After that he went back to the kitchen . Daniel journeyed to the office . After that he went to the kitchen . Where is Daniel ? | Prediction: kitchen | Ground Truth: kitchen ----------------------------------------------------------------------------------------- Daniel travelled to the office . After that he went back to the kitchen . Daniel journeyed to the office . After that he went to the kitchen . Mary journeyed to the bathroom . Following that she travelled to the hallway . Where is Mary ? | Prediction: hallway | Ground Truth: hallway ----------------------------------------------------------------------------------------- Daniel travelled to the office . After that he went back to the kitchen . Daniel journeyed to the office . After that he went to the kitchen . Mary journeyed to the bathroom . Following that she travelled to the hallway . Daniel went back to the hallway . Afterwards he went back to the garden . Where is Daniel ? | Prediction: garden | Ground Truth: garden ----------------------------------------------------------------------------------------- Daniel travelled to the office . After that he went back to the kitchen . Daniel journeyed to the office . After that he went to the kitchen . Mary journeyed to the bathroom . Following that she travelled to the hallway . Daniel went back to the hallway . Afterwards he went back to the garden . Mary travelled to the bathroom . Following that she went back to the kitchen . Where is Mary ? | Prediction: kitchen | Ground Truth: kitchen -----------------------------------------------------------------------------------------
print(story)
['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Following', 'that', 'she', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Afterwards', 'he', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Afterwards', 'she', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'After', 'that', 'she', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.']
from keras.models import model_from_json
model_json = model.to_json()
with open("model_basic-conference.json", "w") as json_file:
json_file.write(model_json)
# serialize weights to HDF5
model.save_weights("model_basic-conference.h5")
print("Saved model to disk")
Saved model to disk
json_file = open('model_basic-conference.json', 'r')
loaded_model_json = json_file.read()
json_file.close()
loaded_model = model_from_json(loaded_model_json)
# load weights into new model
loaded_model.load_weights("model_basic-conference.h5")
/home/ubuntu/src/keras/keras/engine/topology.py:1269: UserWarning: The `Merge` layer is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc. return cls(**config)
test_stories[0]
(['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden')
loaded_model.compile(optimizer='rmsprop', loss='categorical_crossentropy',
metrics=['accuracy'])
for i in range(0,10):
current_inp = test_stories[i]
current_story, current_query, current_answer = vectorize_stories([current_inp], word_idx, story_maxlen, query_maxlen)
current_prediction = loaded_model.predict([current_story, current_query])
current_prediction = idx_word[np.argmax(current_prediction)]
print(' '.join(current_inp[0]), ' '.join(current_inp[1]), '| Prediction:', current_prediction, '| Ground Truth:', current_inp[2])
print("-----------------------------------------------------------------------------------------")
John journeyed to the hallway . After that he journeyed to the garden . Where is John ? | Prediction: garden | Ground Truth: garden ----------------------------------------------------------------------------------------- John journeyed to the hallway . After that he journeyed to the garden . John moved to the office . Following that he went to the hallway . Where is John ? | Prediction: hallway | Ground Truth: hallway ----------------------------------------------------------------------------------------- John journeyed to the hallway . After that he journeyed to the garden . John moved to the office . Following that he went to the hallway . Sandra travelled to the bedroom . Then she moved to the hallway . Where is Sandra ? | Prediction: hallway | Ground Truth: hallway ----------------------------------------------------------------------------------------- John journeyed to the hallway . After that he journeyed to the garden . John moved to the office . Following that he went to the hallway . Sandra travelled to the bedroom . Then she moved to the hallway . Mary travelled to the hallway . Afterwards she went to the bathroom . Where is Sandra ? | Prediction: hallway | Ground Truth: hallway ----------------------------------------------------------------------------------------- John journeyed to the hallway . After that he journeyed to the garden . John moved to the office . Following that he went to the hallway . Sandra travelled to the bedroom . Then she moved to the hallway . Mary travelled to the hallway . Afterwards she went to the bathroom . John went back to the office . After that he moved to the bathroom . Where is Mary ? | Prediction: bathroom | Ground Truth: bathroom ----------------------------------------------------------------------------------------- Daniel travelled to the office . After that he went back to the kitchen . Where is Daniel ? | Prediction: kitchen | Ground Truth: kitchen ----------------------------------------------------------------------------------------- Daniel travelled to the office . After that he went back to the kitchen . Daniel journeyed to the office . After that he went to the kitchen . Where is Daniel ? | Prediction: kitchen | Ground Truth: kitchen ----------------------------------------------------------------------------------------- Daniel travelled to the office . After that he went back to the kitchen . Daniel journeyed to the office . After that he went to the kitchen . Mary journeyed to the bathroom . Following that she travelled to the hallway . Where is Mary ? | Prediction: hallway | Ground Truth: hallway ----------------------------------------------------------------------------------------- Daniel travelled to the office . After that he went back to the kitchen . Daniel journeyed to the office . After that he went to the kitchen . Mary journeyed to the bathroom . Following that she travelled to the hallway . Daniel went back to the hallway . Afterwards he went back to the garden . Where is Daniel ? | Prediction: garden | Ground Truth: garden ----------------------------------------------------------------------------------------- Daniel travelled to the office . After that he went back to the kitchen . Daniel journeyed to the office . After that he went to the kitchen . Mary journeyed to the bathroom . Following that she travelled to the hallway . Daniel went back to the hallway . Afterwards he went back to the garden . Mary travelled to the bathroom . Following that she went back to the kitchen . Where is Mary ? | Prediction: kitchen | Ground Truth: kitchen -----------------------------------------------------------------------------------------
print(current_story)
[[ 0 0 0 5 27 26 25 22 1 3 24 17 28 12 26 25 20 1 5 19 26 25 22 1 3 24 17 28 26 25 20 1 8 19 26 25 13 1 6 24 23 27 26 25 16 1 5 28 12 26 25 16 1 4 17 28 12 26 25 15 1 8 27 26 25 13 1 6 24 23 28 12 26 25 20 1]]
print(current_query)
[[11 18 8 2]]
print(len(current_query))
1
print(test_stories[0])
(['John', 'journeyed', 'to', 'the', 'hallway', '.', 'After', 'that', 'he', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'John', '?'], 'garden')